home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{0ECD9B60-23AA-11D0-B351-00A0C9055D8E}#6.0#0"; "MSHFLXGD.OCX"
- Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 6360
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 6360
- StartUpPosition = 3 'Windows Default
- Begin MSAdodcLib.Adodc Adodc1
- Height = 330
- Left = 2040
- Top = 2880
- Width = 2295
- _ExtentX = 4048
- _ExtentY = 582
- ConnectMode = 0
- CursorLocation = 3
- IsolationLevel = -1
- ConnectionTimeout= 15
- CommandTimeout = 30
- CursorType = 3
- LockType = 3
- CommandType = 2
- CursorOptions = 0
- CacheSize = 50
- MaxRecords = 0
- BOFAction = 0
- EOFAction = 0
- ConnectStringType= 1
- Appearance = 1
- BackColor = -2147483643
- ForeColor = -2147483640
- Orientation = 0
- Enabled = -1
- Connect = "Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;Data Source=C:\VBDB\Working\Biblio.mdb"
- OLEDBString = "Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;Data Source=C:\VBDB\Working\Biblio.mdb"
- OLEDBFile = ""
- DataSourceName = ""
- OtherAttributes = ""
- UserName = ""
- Password = ""
- RecordSource = "Titles"
- Caption = "Adodc1"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- _Version = 393216
- End
- Begin MSHierarchicalFlexGridLib.MSHFlexGrid MSHFlexGrid1
- Bindings = "QuickExample10.frx":0000
- Height = 2655
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 6135
- _ExtentX = 10821
- _ExtentY = 4683
- _Version = 393216
- Cols = 8
- FixedCols = 0
- AllowUserResizing= 1
- _NumberOfBands = 1
- _Band(0).Cols = 8
- _Band(0).GridLinesBand= 1
- _Band(0).TextStyleBand= 0
- _Band(0).TextStyleHeader= 0
- _Band(0)._NumMapCols= 8
- _Band(0)._MapCol(0)._Name= "PubID"
- _Band(0)._MapCol(0)._RSIndex= 3
- _Band(0)._MapCol(0)._Alignment= 7
- _Band(0)._MapCol(1)._Name= "Title"
- _Band(0)._MapCol(1)._RSIndex= 0
- _Band(0)._MapCol(2)._Name= "Year Published"
- _Band(0)._MapCol(2)._RSIndex= 1
- _Band(0)._MapCol(2)._Alignment= 7
- _Band(0)._MapCol(3)._Name= "ISBN"
- _Band(0)._MapCol(3)._RSIndex= 2
- _Band(0)._MapCol(4)._Name= "Description"
- _Band(0)._MapCol(4)._RSIndex= 4
- _Band(0)._MapCol(5)._Name= "Notes"
- _Band(0)._MapCol(5)._RSIndex= 5
- _Band(0)._MapCol(6)._Name= "Subject"
- _Band(0)._MapCol(6)._RSIndex= 6
- _Band(0)._MapCol(7)._Name= "Comments"
- _Band(0)._MapCol(7)._RSIndex= 7
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Activate()
- Dim I As Integer
- MSHFlexGrid1.Row = 0
- For I = 0 To MSHFlexGrid1.Cols - 1
- MSHFlexGrid1.Col = I
- MSHFlexGrid1.CellAlignment = 4
- MSHFlexGrid1.MergeCol(I) = True
- Next I
- MSHFlexGrid1.Col = 0
- MSHFlexGrid1.ColSel = MSHFlexGrid1.Cols - 1
- MSHFlexGrid1.Sort = flexSortGenericAscending
- MSHFlexGrid1.MergeCells = flexMergeRestrictColumns
- End Sub
-